KVM

Section: C Library Functions (3)
Updated: March 31, 1991
Index Return to Main Contents
 

NAME

kvm - kernel virtual memory library  

SYNOPSIS

#include <kvm.h>

kd = kvm_open(namelist, corefile, swapfile, flag, errstr);
kvm_t *kd;
char *namelist, *corefile, *swapfile;
int flag;
char *errstr;

s = kvm_close(kd);
int s;

s = kvm_read(kd, addr, buf, nbytes);
s = kvm_write(kd, addr, buf, nbytes);
int s;
kvm_t *kd;
unsigned long addr;
char *buf;
unsigned nbytes;

s = kvm_nlist(kd, nl);
int s;
kvm_t *kd;
struct nlist *nl;
 

DESCRIPTION

Kvm is a library that eumlates SunOS's version.

 

SEE ALSO


 

Index

NAME
SYNOPSIS
DESCRIPTION
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 07:06:38 GMT, May 19, 2025